.container-contact{
    font-family: 'Roboto', sans-serif;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.text-top-wrapper{
    margin: 25px 0px;
}

.text-top-wrapper p:nth-child(1){
    font-size: 24px;
    text-transform: uppercase;
    font-weight: 500;
}

.text-top-wrapper p:nth-child(2){
    font-size: 18px;
    font-weight: 300;
}

.p-label{
    font-family: 'Roboto',sans-serif;
    font-size: 18px;
    font-weight: 300;
    margin-bottom: 0px;
}

.p-mandatory{
    font-family: 'Roboto',sans-serif;
    font-size: 18px;
    font-weight: 300;
    margin-bottom: 30px;
    padding-right: 110px;
    margin-top: 30px;
}

.p-info{
    font-family: 'Roboto',sans-serif;
    font-size: 18px;
    font-weight: 300;
    margin-bottom: 10px;
}

.contact-wrapper{
    width: 100%;
    display: flex;
    justify-content: center;
    width: 65%;
    flex-wrap: wrap;
    margin-bottom: 75px;
}

.form-wrapper{
    max-width: 49%;
}

#contact-form input{
    width: 80%;
    height: 40px;
    font-size: 18px;
}

#contact-form select{
    width: 80%;
    font-family: 'Roboto',sans-serif;
    height: 40px;
    font-size: 18px;
    font-weight: 300;
}

#contact-form textarea{
    font-family: 'Roboto',sans-serif;
    width: 80%;
    height: 150px;
    font-size: 18px;
    resize: vertical;
}

#input-submit{
    background-color: #0F2657;
    color: white;
    border: none;
    border-radius: 5px;
    font-family: 'Roboto';
    margin: 10px 0px;
    transition: 0.1s ease-in-out;
}

#input-submit:hover{
    background-color:#1d47a0;
    cursor: pointer;
}


.info-wrapper{
    width: 49%;
}

.info-wrapper strong{
    font-size: 28px;
    font-weight: 500;
}

.info-wrapper img{
    height: 30px;
    margin-bottom: -8px;
}

.iframe-wrapper{
    width: 100%;
    height: 380px;
}

.iframe-wrapper iframe{
    width: 100%;
    height: 100%;
}

a{
    text-decoration: none;
    color: #27a3c5;
}

.wrapper-all{
    background-color: white;
    z-index: 1;
}

@media (max-width: 1400px) {
    .form-wrapper{
        max-width: 75%;
    }
    .info-wrapper{
        width: 75%;
    }

    .text-top-wrapper{
        padding: 0px 20px;
    }

}


@media (max-width: 992px) {
    .contact-wrapper {
        width: 95%;
    }
    .form-wrapper{
        max-width: 99%;
    }

    .form-wrapper form{
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    .info-wrapper{
        width: 99%;
    }
    .text-top-wrapper p:nth-child(1){
        font-size: 22px;

    }    
    .text-top-wrapper p:nth-child(2){
        font-size: 16px;
    }
    #contact-form input{
        height: 30px;
    }
    
    #contact-form select{
        height: 30px;
        font-size: 15px;
    }
    
    #contact-form textarea{
        height: 150px;
    }
    .p-label{
        font-size: 16px;
    }
    .p-mandatory{
        margin: 10px 0px;
        font-size: 14px;
        text-align: center;
        padding-right: 0px;
    }
    #input-submit{
        height: 45px !important;
        font-size: 16px !important;
    }
    .info-wrapper{
        margin-top: 15px;
    }
    .info-wrapper strong {
        font-size: 26px;
    }
    .info-wrapper .p-label{
        font-size: 16px;
        margin: 5px 0px;
    }
    .iframe-wrapper {
        height: 300px;
    }
}